04. Challenge 1 Solution

Here's my solution:

#include <iostream>

int main()
{
    std::cout << "no more steering wheels" << std::endl;
    return 0;
}

std refers to namespace std and the << operator passes sequences of characters to stdout. In fact, two sequences of characters get passed to stdout: "no more steering wheels" and std::endl, a newline character (std::endl also flushes the buffer).

It's worth noting that "no more steering wheels" is not a string like a Python string, rather it's a char [] - a sequence of characters.

Time for another! Let's control some flow.